home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / lib / chroot-setup.sh next >
Text File  |  2009-02-16  |  3KB  |  122 lines

  1. # Setup for using apt to install packages in /target.
  2.  
  3. mountpoints () {
  4.     cut -d" " -f2 /proc/mounts | sort | uniq
  5. }
  6.  
  7. chroot_setup () {
  8.     # Bail out if directories we need are not there
  9.     if [ ! -d /target/sbin ] || [ ! -d /target/usr/sbin ] || \
  10.        [ ! -d /target/proc ]; then
  11.         return 1
  12.     fi
  13.     if [ ! -d /target/sys ]; then
  14.         return 1
  15.     fi
  16.  
  17.     if [ -e /var/run/chroot-setup.lock ]; then
  18.         cat >&2 <<EOF
  19. apt-install or in-target is already running, so you cannot run either of
  20. them again until the other instance finishes. You may be able to use
  21. 'chroot /target ...' instead.
  22. EOF
  23.         return 1
  24.     fi
  25.     touch /var/run/chroot-setup.lock
  26.  
  27.     # Create a policy-rc.d to stop maintainer scripts using invoke-rc.d 
  28.     # from running init scripts. In case of maintainer scripts that don't
  29.     # use invoke-rc.d, add a dummy start-stop-daemon.
  30.     cat > /target/usr/sbin/policy-rc.d <<EOF
  31. #!/bin/sh
  32. exit 101
  33. EOF
  34.     chmod a+rx /target/usr/sbin/policy-rc.d
  35.     
  36.     if [ -e /target/sbin/start-stop-daemon ]; then
  37.         mv /target/sbin/start-stop-daemon /target/sbin/start-stop-daemon.REAL
  38.     fi
  39.     cat > /target/sbin/start-stop-daemon <<EOF
  40. #!/bin/sh
  41. echo 1>&2
  42. echo 'Warning: Fake start-stop-daemon called, doing nothing.' 1>&2
  43. exit 0
  44. EOF
  45.     chmod a+rx /target/sbin/start-stop-daemon
  46.     
  47.     # Record the current mounts
  48.     mountpoints > /tmp/mount.pre
  49.  
  50.     # Some packages (eg. the kernel-image package) require a mounted
  51.     # /proc/. Only mount it if not mounted already
  52.     if [ ! -f /target/proc/cmdline ]; then
  53.         mount -t proc proc /target/proc
  54.     fi
  55.  
  56.     # For installing >=2.6.14 kernels we also need sysfs mounted
  57.     # Only mount it if not mounted already
  58.     if [ ! -d /target/sys/devices ]; then
  59.         mount -t sysfs sysfs /target/sys
  60.     fi
  61.  
  62.     # In Lenny, /dev/ lacks the pty devices, so we need devpts mounted
  63.     if [ ! -e /target/dev/pts/0 ]; then
  64.         mkdir -p /target/dev/pts
  65.         mount -t devpts devpts -o noexec,nosuid,gid=5,mode=620 \
  66.             /target/dev/pts
  67.     fi
  68.  
  69.     # Try to enable proxy when using HTTP.
  70.     # What about using ftp_proxy for FTP sources?
  71.     RET=$(debconf-get mirror/protocol || true)
  72.     if [ "$RET" = "http" ]; then
  73.         RET=$(debconf-get mirror/http/proxy || true)
  74.         if [ "$RET" ]; then
  75.             http_proxy="$RET"
  76.             export http_proxy
  77.         fi
  78.     fi
  79.  
  80.     # Pass debconf priority through.
  81.     DEBIAN_PRIORITY=$(debconf-get debconf/priority || true)
  82.     export DEBIAN_PRIORITY
  83.  
  84.     LANG=${IT_LANG_OVERRIDE:-$(debconf-get debian-installer/locale || true)}
  85.     export LANG
  86.     export PERL_BADLANG=0
  87.  
  88.     # Unset variables that would make scripts in the target think
  89.     # that debconf is already running there.
  90.     unset DEBIAN_HAS_FRONTEND
  91.     unset DEBIAN_FRONTEND
  92.     unset DEBCONF_FRONTEND
  93.     unset DEBCONF_REDIR
  94.     # Avoid debconf mailing notes.
  95.     DEBCONF_ADMIN_EMAIL=""
  96.     export DEBCONF_ADMIN_EMAIL
  97.     # Avoid apt-listchanges doing anything.
  98.     APT_LISTCHANGES_FRONTEND=none
  99.     export APT_LISTCHANGES_FRONTEND
  100.  
  101.     return 0
  102. }
  103.  
  104. chroot_cleanup () {
  105.     rm -f /target/usr/sbin/policy-rc.d
  106.     mv /target/sbin/start-stop-daemon.REAL /target/sbin/start-stop-daemon
  107.  
  108.     # Undo the mounts done by the packages during installation.
  109.     # Reverse sorting to umount the deepest mount points first.
  110.     # Items with count of 1 are new.
  111.     for dir in $( (cat /tmp/mount.pre /tmp/mount.pre; mountpoints ) | \
  112.              sort -r | uniq -c | grep "^[[:space:]]*1[[:space:]]" | \
  113.              sed "s/^[[:space:]]*[0-9][[:space:]]//"); do
  114.         if ! umount $dir; then
  115.             logger -t $0 "warning: Unable to umount '$dir'"
  116.         fi
  117.     done
  118.     rm -f /tmp/mount.pre
  119.  
  120.     rm -f /var/run/chroot-setup.lock
  121. }
  122.